home *** CD-ROM | disk | FTP | other *** search
/ Delphi Informant Complete 1995 - 2000 / Delphi Informant Complete 1995 to 2000.iso / Delphi Informant Magazine Complete Works SOURCE CODE 1998.rar / 1998 / Feb / di9802ts / VBSample1.bas < prev    next >
BASIC Source File  |  1997-08-13  |  94b  |  7 lines

  1. Sub Main
  2.     Dim j,k
  3.     For j = 1 to 5
  4.         MsgBox "Testing" & j
  5.     Next
  6. End Sub
  7.